home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / daemons / ipServer / ip.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-16  |  988 b   |  35 lines

  1. /*
  2.  * ip.h --
  3.  *
  4.  *    Declarations of external IP-related routines.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  *
  17.  * $Header: /sprite/src/daemons/ipServer/RCS/ip.h,v 1.3 89/08/15 19:55:29 rab Exp $ SPRITE (Berkeley)
  18.  */
  19.  
  20. #ifndef _IPS_IP
  21. #define _IPS_IP
  22.  
  23. #include "sprite.h"
  24.  
  25. extern void        IP_Init();
  26. extern ReturnStatus    IP_Input();
  27. extern ReturnStatus    IP_Output();
  28. extern void        IP_DelayedOutput();
  29. extern void        IP_QueueOutput();
  30. extern Address        IP_GetSrcRoute();
  31. extern void        IP_SetProtocolHandler();
  32. extern void        IP_FormatPacket();
  33.  
  34. #endif /* _IPS_IP */
  35.